home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / MacOS 8 Resources / Developer Tools / Mac OS 8 Interfaces & Libraries / Interfaces / CIncludes / SNSRegistry.h < prev    next >
C/C++ Source or Header  |  1996-05-01  |  1KB  |  67 lines

  1. /*
  2.      File:        SNSRegistry.h
  3.  
  4.      Contains:    System Notification Service Registry of services and kinds.
  5.  
  6.      Version:    Technology:    System 8
  7.                  Release:    Universal Interfaces 3.0d3 on Copland DR1
  8.  
  9.      Copyright:    © 1984-1996 by Apple Computer, Inc.  All rights reserved.
  10.  
  11.      Bugs?:        If you find a problem with this file, send the file and version
  12.                  information (from above) and the problem description to:
  13.  
  14.                      Internet:    apple.bugs@applelink.apple.com
  15.                      AppleLink:    APPLE.BUGS
  16.  
  17. */
  18. #ifndef __SNSREGISTRY__
  19. #define __SNSREGISTRY__
  20.  
  21. #ifndef __TYPES__
  22. #include <Types.h>
  23. #endif
  24.  
  25. #ifdef __cplusplus
  26. extern "C" {
  27. #endif
  28.  
  29. #if PRAGMA_IMPORT_SUPPORTED
  30. #pragma import on
  31. #endif
  32.  
  33. #if PRAGMA_ALIGN_SUPPORTED
  34. #pragma options align=mac68k
  35. #endif
  36.  
  37. #if FOR_SYSTEM8_PREEMPTIVE
  38.  
  39. enum {
  40.     kSNSDeathNotificationService = 'deth',                        /*  0x64657468  */
  41.     kSNSFSNotificationService    = 'file'                        /*  0x66696c65  */
  42. };
  43.  
  44.  
  45. enum {
  46.     kSNSProcessKind                = 'proc',                        /*  0x70726f63  */
  47.     kSNSKernelProcessKind        = 'kprc',                        /*  0x6b707263  */
  48.     kSNSTaskKind                = 'task'                        /*  0x7461736b  */
  49. };
  50.  
  51. #endif
  52.  
  53. #if PRAGMA_ALIGN_SUPPORTED
  54. #pragma options align=reset
  55. #endif
  56.  
  57. #if PRAGMA_IMPORT_SUPPORTED
  58. #pragma import off
  59. #endif
  60.  
  61. #ifdef __cplusplus
  62. }
  63. #endif
  64.  
  65. #endif /* __SNSREGISTRY__ */
  66.  
  67.